home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.92 / crossfir / crossfire-0.92.5 / crossedit / include / Xaw.h < prev   
C/C++ Source or Header  |  1996-07-24  |  2KB  |  74 lines

  1. /*
  2.  * Xaw.h - convience header for using Athena Widget Set
  3.  * Copyright (C) 1993 Petri Heinila
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  * Author can be connected by email from hevi@lut.fi
  20.  */
  21.  
  22. #ifndef _Xaw_h
  23. #define _Xaw_h
  24.  
  25. #ifdef __cplusplus
  26. #define Object XtObject
  27. #define String XtString
  28. #endif /* __cplusplus */
  29.  
  30. #include <X11/Intrinsic.h>
  31. #include <X11/Shell.h>
  32. #include <X11/StringDefs.h>
  33. #include <X11/Xaw/Cardinals.h>
  34.  
  35. /*** Simple Widgets ***/
  36. #include <X11/Xaw/Command.h>
  37. #include <X11/Xaw/Grip.h>
  38. #include <X11/Xaw/Label.h>
  39. #include <X11/Xaw/List.h>
  40. #include <X11/Xaw/Panner.h>
  41. #include <X11/Xaw/Repeater.h>
  42. #include <X11/Xaw/Scrollbar.h>
  43. #include <X11/Xaw/StripChart.h>
  44. #include <X11/Xaw/Toggle.h>
  45.  
  46. /*** Menus ***/
  47. #include <X11/Xaw/MenuButton.h>
  48. #include <X11/Xaw/SimpleMenu.h>
  49. #include <X11/Xaw/Sme.h>
  50. #include <X11/Xaw/SmeBSB.h>
  51. #include <X11/Xaw/SmeLine.h>
  52.  
  53. /*** Text Widgets ***/
  54. #include <X11/Xaw/AsciiText.h>
  55. #include <X11/Xaw/Text.h>
  56.  
  57. /*** Composite and Constraint Widgets ***/
  58. #include <X11/Xaw/Box.h>
  59. #include <X11/Xaw/Dialog.h>
  60. #include <X11/Xaw/Form.h>
  61. #include <X11/Xaw/Paned.h>
  62. #include <X11/Xaw/Porthole.h>
  63. #include <X11/Xaw/Tree.h>
  64. #include <X11/Xaw/Viewport.h>
  65.  
  66. #ifdef __cplusplus
  67. #undef Object
  68. #undef String
  69. #endif /* __cplusplus */
  70.  
  71. #endif /* _Xaw_h */
  72.  
  73.  
  74.